home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Welcome Options 2.xpl < prev    next >
Text File  |  2002-01-20  |  2KB  |  55 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Windows NT/2K/XP\60) Windows Launch"
  5. "NAME"="Getting Started dialog"
  6. "VERSION"="2.00"
  7. "OSVERSION"="0001011"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Allow "Getting Started" for all users"
  10. "TEXT 2"="Allow "Getting Started" for current user"
  11. "DESCRIPTION 1"="By default, Windows displays the "Getting Started" dialog for any newly loged on user."
  12. "DESCRIPTION 2"="With these setting you can control if it's allowed to display this dialog. If it's not allowed,  the user will not see the "Getting Started" dialog."
  13. "DESCRIPTION 3"="Please note that the setting for the current user will override the value for the all users setting."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com/"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"="see Q240130 MS KB"
  18.  
  19.  
  20. sVA="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoWelcomeScreen" 'DW
  21. sVC="HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoWelcomeScreen"
  22.  
  23.  
  24. Sub Plugin_Initialize 
  25.  i=RegReadValue(sVA)
  26.  if IsEmpty(i)=true or i=0 then SetUIElement 1,true
  27.  
  28.  i=RegReadValue(sVC)
  29.  if IsEmpty(i)=true or i=0 then SetUIElement 2,true
  30. End Sub
  31.  
  32.  
  33. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  If GetUIElement(1)=true then
  35.     if RegValueExists(sVA) then Call RegDeleteValue(sVA)
  36.  else
  37.     Call RegWriteValue(sVA,1,2)
  38.  end if
  39.  
  40.  If GetUIElement(2)=true then
  41.     if RegValueExists(sVC) then Call RegDeleteValue(sVC)
  42.  else
  43.     Call RegWriteValue(sVC,1,2)
  44.  end if
  45.  
  46.  Call Logoff()
  47. End Sub
  48.  
  49.  
  50. Sub Plugin_Terminate 
  51. End Sub
  52.  
  53.  
  54.  
  55.